home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Windows 95 with MFC
/
Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso
/
NT
/
CODE
/
CHAP08
/
PAINT4
/
CLINE.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-04-05
|
482 b
|
23 lines
//***********************************************************************
//
// CLine.h
//
//***********************************************************************
class CLine : public CObject
{
DECLARE_SERIAL (CLine)
private:
CPoint m_ptFrom;
CPoint m_ptTo;
UINT m_nWidth;
COLORREF m_crColor;
public:
CLine () {}
CLine (CPoint, CPoint, UINT, COLORREF);
virtual void Serialize (CArchive&);
virtual void Draw (CDC*);
};